/* General container styling */
.galleryContainer {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  
  /* Title styling */
  .galleryTitles {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
  }
  
  /* Collection container */
  #collection {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Dot navigation */
  #dots {
    margin-top: 15px;
  }
  
  .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .dot.active {
    background-color: #333;
    transform: scale(1.2);
  }
  
  /* Arrows for navigation */
  #prev, #next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #333;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    /* border-radius: 50%; */
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  #prev:hover, #next:hover {
    background-color: #d4dcf3;
    /* transform: scale(1.1); */
  }
  
  #prev {
    left: 10px;
  }
  
  #next {
    right: 10px;
  }
  
  /* Gallery image container */
  .gallery {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 20px;
    position: relative;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .galleryTitles {
      font-size: 24px;
    }
  
    #prev, #next {
      font-size: 24px;
      padding: 8px;
    }
  
    .dot {
      width: 10px;
      height: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .galleryTitles {
      font-size: 20px;
    }
  
    #prev, #next {
      font-size: 20px;
    }
  
    .dot {
      width: 8px;
      height: 8px;
    }
  }
  